home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / controls / listClasses / BaseListData.as next >
Encoding:
Text File  |  2010-05-14  |  1011 b   |  45 lines

  1. package mx.controls.listClasses
  2. {
  3.    import mx.core.IUIComponent;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class BaseListData
  9.    {
  10.       mx_internal static const VERSION:String = "2.0.1.0";
  11.       
  12.       private var _uid:String;
  13.       
  14.       [Bindable("dataChange")]
  15.       public var label:String;
  16.       
  17.       public var rowIndex:int;
  18.       
  19.       public var owner:IUIComponent;
  20.       
  21.       public var columnIndex:int;
  22.       
  23.       public function BaseListData(param1:String, param2:String, param3:IUIComponent, param4:int = 0, param5:int = 0)
  24.       {
  25.          super();
  26.          this.label = param1;
  27.          this.uid = param2;
  28.          this.owner = param3;
  29.          this.rowIndex = param4;
  30.          this.columnIndex = param5;
  31.       }
  32.       
  33.       public function set uid(param1:String) : void
  34.       {
  35.          _uid = param1;
  36.       }
  37.       
  38.       public function get uid() : String
  39.       {
  40.          return _uid;
  41.       }
  42.    }
  43. }
  44.  
  45.